From e3935318bf402ef3374ac05ca5d5245f9cc66f5a Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Tue, 14 Jul 2015 17:41:12 +0100 Subject: [PATCH] xl: fix a typo in error string in create_domain Signed-off-by: Wei Liu Acked-by: Ian Jackson --- tools/libxl/xl_cmdimpl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index 888f729fe4..8b4be72fe8 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -2658,7 +2658,7 @@ static uint32_t create_domain(struct domain_create *dom_info) } if (!restoring && extra_config && strlen(extra_config)) { if (config_len > INT_MAX - (strlen(extra_config) + 2 + 1)) { - fprintf(stderr, "Failed to attach extra configration\n"); + fprintf(stderr, "Failed to attach extra configuration\n"); return ERROR_FAIL; } /* allocate space for the extra config plus two EOLs plus \0 */ -- 2.30.2